home *** CD-ROM | disk | FTP | other *** search
/ Palm Utilities / Palm_Utilities_CD-ROM_2001_2001.iso / files / utils time / DCal 0.5 / dcal.exe / dcal / source / dcal.rcp < prev    next >
Encoding:
Text File  |  1999-11-11  |  2.2 KB  |  68 lines

  1. #include "dcalRsc.h"
  2.  
  3. //    DCal, a Discordian calendar for the Palm OS.
  4. //    Copyright (C) 1999 Ron Hale-Evans <rwhe@apocalypse.org>.
  5. //
  6. //    This program is free software; you can redistribute it and/or modify
  7. //    it under the terms of the GNU General Public License as published by
  8. //    the Free Software Foundation; the version used for this program
  9. //    is Version 2.
  10. //
  11. //    This program is distributed in the hope that it will be useful,
  12. //    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. //    GNU General Public License for more details.
  15. //
  16. //    You should have received a copy of the GNU General Public License
  17. //    along with this program; if not, write to the Free Software
  18. //    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
  19. //
  20. //    This program comes with ABSOLUTELY NO WARRANTY. Use it at your own risk.
  21. //    For the text of the GNU General Public License, see the file gpl.txt,
  22. //    which should have been distributed with this file.
  23.  
  24.  
  25. APPLICATIONICONNAME 1000 "DCal"
  26. ICON "dcal.pbm"
  27. BITMAP ID AppIconBmap "dcal.pbm" COMPRESS
  28.  
  29.  
  30. VERSION ID 1 "0.5"
  31.  
  32.  
  33. FORM MainForm 0 0 160 160
  34. MENUID MainOptionsMenu
  35. USABLE
  36. BEGIN
  37.     TITLE "DCal"
  38.     FIELD MainTextField 10 25 140 100 NONEDITABLE MULTIPLELINES FONT 2
  39. END
  40.  
  41.  
  42. FORM AboutForm 2 2 156 156
  43. MODAL
  44. USABLE
  45. BEGIN
  46.   TITLE "About DCal"
  47.   FORMBITMAP AT (5 18) BITMAP AppIconBmap
  48.   LABEL "DCal v. 0.5" AUTOID AT (40 18) FONT 2
  49.   LABEL "Discordian calendar" AUTOID AT (PREVLEFT PREVBOTTOM) FONT 0
  50.   LABEL "⌐1999 Ron Hale-Evans" AUTOID AT (PREVLEFT PREVBOTTOM) FONT 0
  51.   LABEL "<rwhe@apocalypse.org>" AUTOID AT (PREVLEFT PREVBOTTOM) FONT 0
  52.   LABEL "This program is released under" AUTOID AT (10 PREVBOTTOM+5) FONT 0
  53.   LABEL "the GNU General Public License" AUTOID AT (PREVLEFT PREVBOTTOM) FONT 0
  54.   LABEL "(see file README.TXT)." AUTOID AT (PREVLEFT PREVBOTTOM) FONT 0
  55.   LABEL "Hail fnordin' Eris! Yippee!" AUTOID AT (PREVLEFT PREVBOTTOM+5) FONT 0 
  56.   BUTTON "Done" AboutOKButton AT (CENTER PREVBOTTOM+5 AUTO AUTO) FONT 0
  57. END
  58.  
  59.  
  60. MENU ID MainOptionsMenu
  61. BEGIN
  62.   PULLDOWN "Options"
  63.   BEGIN
  64.     MENUITEM "About     " MainOptionsAboutMenuItem "A"
  65.   END
  66. END
  67.  
  68.